From 8e6df01fd7f939d6ddeefb358484501823434a37 Mon Sep 17 00:00:00 2001 From: robertl Date: Thu, 6 Sep 2007 04:36:54 +0000 Subject: [PATCH] Correct (mostly hypothetical) use-before-initted in pcx reader. --- pcx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcx.c b/pcx.c index 5c479282f..6b94da335 100644 --- a/pcx.c +++ b/pcx.c @@ -82,7 +82,7 @@ static void data_read(void) { char name[7], desc[41]; - double lat,lon; + double lat = 0, lon = 0;: long alt; int symnum; char date[10]; -- 2.30.2